home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / devtools / automake-1.0.tar.gz / automake-1.0.tar / automake-1.0 / tests / mdate2.test < prev    next >
Text File  |  1996-05-15  |  427b  |  23 lines

  1. #! /bin/sh
  2.  
  3. # Test to make sure mdate-sh is included in distribution.
  4.  
  5. . $srcdir/defs || exit 1
  6.  
  7. cat > Makefile.am << 'END'
  8. info_TEXINFOS = textutils.texi
  9. END
  10.  
  11. cat > textutils.texi << 'END'
  12. @include version.texi
  13. END
  14.  
  15. # Required when using Texinfo.
  16. : > texinfo.tex
  17. : > mdate-sh
  18.  
  19. # Use "././" to confuse Automake into thinking this is a subdir build.
  20. $AUTOMAKE ././Makefile || exit 1
  21.  
  22. grep 'mdate-sh' Makefile.in | grep -v SHELL
  23.